crates-index
Library for retrieving and interacting with the crates.io registry git-based index.
The index contains metadata for all Rust libraries and programs published on crates.io: their versions, dependencies, and feature flags.
Example
let index = new_cargo_default?;
for crate_releases in index.crates
Migration from 0.18
It should work without any code changes. Only the git2
and toml
dependencies were updated.
Migration from 0.16 and 0.17
BareIndex
andBareIndexRepo
have become theIndex
.Index::new_cargo_default()?
is the preferred way of accessing the index. Usewith_path()
to clone to a different directory.- There's no need to call
retrieve()
orexists()
. It's always retrieved and always exists. retrieve_or_update()
is justupdate()
.highest_version()
returns crate metadata rather than just the version number. Callhighest_version().version().parse()
to getsemver::Version
.- There's no
crate_index_paths()
, because there are no files any more. Usecrate_
to get individual crates.
Similar crates
License
Licensed under version 2 of the Apache License